crypto/tls.clientHandshakeStateTLS13.suite (field)
26 uses
crypto/tls (current package)
handshake_client_tls13.go#L36: suite *cipherSuiteTLS13
handshake_client_tls13.go#L65: hs.transcript = hs.suite.hash.New()
handshake_client_tls13.go#L72: hs.echContext.innerTranscript = hs.suite.hash.New()
handshake_client_tls13.go#L88: confTranscript := cloneHash(hs.echContext.innerTranscript, hs.suite.hash)
handshake_client_tls13.go#L92: h := hs.suite.hash.New
handshake_client_tls13.go#L204: if hs.suite != nil && selectedSuite != hs.suite {
handshake_client_tls13.go#L212: hs.suite = selectedSuite
handshake_client_tls13.go#L213: c.cipherSuite = hs.suite.id
handshake_client_tls13.go#L262: confTranscript := cloneHash(hs.echContext.innerTranscript, hs.suite.hash)
handshake_client_tls13.go#L267: h := hs.suite.hash.New
handshake_client_tls13.go#L341: if pskSuite.hash == hs.suite.hash {
handshake_client_tls13.go#L346: transcript := hs.suite.hash.New()
handshake_client_tls13.go#L353: if err := computeAndUpdatePSK(hello, hs.binderKey, transcript, hs.suite.finishedHash); err != nil {
handshake_client_tls13.go#L456: if pskSuite.hash != hs.suite.hash {
handshake_client_tls13.go#L487: earlySecret = tls13.NewEarlySecret(hs.suite.hash.New, nil)
handshake_client_tls13.go#L493: c.setWriteTrafficSecret(hs.suite, QUICEncryptionLevelHandshake, clientSecret)
handshake_client_tls13.go#L495: if err := c.setReadTrafficSecret(hs.suite, QUICEncryptionLevelHandshake, serverSecret, false); err != nil {
handshake_client_tls13.go#L500: c.quicSetWriteSecret(QUICEncryptionLevelHandshake, hs.suite.id, clientSecret)
handshake_client_tls13.go#L501: if err := c.quicSetReadSecret(QUICEncryptionLevelHandshake, hs.suite.id, serverSecret); err != nil {
handshake_client_tls13.go#L700: expectedMAC := hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
handshake_client_tls13.go#L714: if err := c.setReadTrafficSecret(hs.suite, QUICEncryptionLevelApplication, serverSecret, false); err != nil {
handshake_client_tls13.go#L729: c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
handshake_client_tls13.go#L812: verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
handshake_client_tls13.go#L819: c.setWriteTrafficSecret(hs.suite, QUICEncryptionLevelApplication, hs.trafficSecret)
handshake_client_tls13.go#L826: c.quicSetWriteSecret(QUICEncryptionLevelApplication, hs.suite.id, hs.trafficSecret)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |